home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap04 / howto08 / ccfmgr27.dpr next >
Encoding:
Text File  |  1995-10-27  |  639 b   |  23 lines

  1. program Ccfmgr27;
  2.  
  3. uses
  4.   Forms,
  5.   Ufmgr27 in 'UFMGR27.PAS' {CCFileMgrForm},
  6.   Drwsutl4 in 'DRWSUTL4.PAS',
  7.   Drwsutl1 in 'DRWSUTL1.PAS',
  8.   Cfmpfun in 'CFMPFUN.PAS' {CCFMPropsForm},
  9.   Dddfunit in 'DDDFUNIT.PAS' {DestDDForm},
  10.   Ccprnmgr in 'CCPRNMGR.PAS' {CCPrintForm},
  11.   Pprevun in 'PPREVUN.PAS' {PrintPreviewForm};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.Title := 'CC File Center';
  17.   Application.CreateForm(TCCFileMgrForm, CCFileMgrForm);
  18.   Application.CreateForm(TCCFMPropsForm, CCFMPropsForm);
  19.   Application.CreateForm(TDestDDForm, DestDDForm);
  20.   Application.CreateForm(TCCPrintForm, CCPrintForm);
  21.   Application.Run;
  22. end.
  23.